home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
MacHacksBug
/
Python 1.5.2c1
/
hello.py
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2000-06-23
|
104 b
|
7 lines
import sys
from Tkinter import *
root = Tk()
w=Label(root, text="Hello World")
w.pack()
root.mainloop()